Previous Book Contents Book Index Next

Inside Macintosh: 3D Graphics Programming With QuickDraw 3D /
Chapter 2 - 3D Viewer / 3D Viewer Reference
Constants


Gestalt Selector and Response Values

You can pass the gestaltQuickDraw3DViewer selector to the Gestalt function to determine information about the availability of the 3D Viewer.

enum {
   gestaltQuickDraw3DViewer         = 'q3vc'
}
Gestalt returns information to you by returning a long word in the response parameter. Currently, the returned values are defined by constants:

enum {
   gestaltQ3ViewerNotAvailable      = 0,
   gestaltQ3ViewerAvailable         = 1
}
Constant descriptions

gestaltQ3ViewerNotAvailable
The 3D Viewer is not available.
gestaltQ3ViewerAvailable
The 3D Viewer is available.

Previous Book Contents Book Index Next

© Apple Computer, Inc.
11 JUL 1996